home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 February / CHIPCD_02_2002.iso / Internet / Macromedia ColdFusion Server 5 / coldfusion-50-win-us.exe / data1.cab / Examples / CFDOCS / snippets / authenticatedcontext.cfm < prev    next >
Encoding:
Text File  |  2001-06-13  |  627 b   |  23 lines

  1. <!---  This view-only example calls the AuthenticatedContext
  2.        function. --->
  3.  
  4. <HTML>
  5. <HEAD>
  6. <TITLE>AuthenticatedContext Function</TITLE>
  7. </HEAD>
  8.  
  9. <BODY>
  10. <H3>AuthenticatedContext Function</H3>
  11. <P>The AuthenticatedContext function returns the name of the secure context.
  12. <P>This is a view-only example. Refer to the commented
  13. source code for more information.
  14. <!--- Before executing this code, use the CFAUTHENTICATE tag to 
  15.       specify the secure context.                                     --->
  16.  
  17. <---
  18. Authenticated Context: <CFOUTPUT>#AuthenticatedContext()#</CFOUTPUT>
  19. --->
  20.  
  21. </BODY>
  22. </HTML>      
  23.